home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / biz / dbase / comicdem.lha / Demo / Scripts / InstallFontsNTSC next >
Text File  |  1994-07-04  |  815b  |  33 lines

  1. echo "This script will install the fonts Opal9 and CGTimes23 into your"
  2. echo "FONTS: directory, after checking to see if you already have them."
  3. echo ""
  4.  
  5. if not EXISTS fonts:opal/9
  6.     echo "No existing font, installing opal9"
  7.     if not EXISTS fonts:opal
  8.         makedir fonts:opal
  9.     endif
  10.     copy /fonts/opal/9 TO fonts:opal/9 quiet
  11.     if not EXISTS fonts:opal.font
  12.         /copy fonts/opal.font fonts:opal.font
  13.     endif
  14. else
  15.     echo "Font opal 9 exists."
  16. endif
  17.  
  18. if not EXISTS fonts:CGTimes/23
  19.     echo "No existing font, installing CGTimes23"
  20.     if not EXISTS fonts:CGTimes
  21.         makedir fonts:CGTimes
  22.     endif
  23.     copy /fonts/CGTimes/23 TO fonts:CGTimes/23 ALL
  24.     if not EXISTS fonts:CGTimes.font
  25.         copy /fonts/CGTimes.font fonts:CGTimes.font
  26.     endif
  27. else
  28.     echo "Font CGTimes 23 exists."
  29. endif
  30.  
  31. echo "All Done.  Click close gadget to get rid of window."
  32.  
  33.